home *** CD-ROM | disk | FTP | other *** search
- /************************************************************************
- *
- * Function: BuildISO.h
- *
- * Purpose: collect all the constants specific to building
- * this bizzare little puppy.
- *
- * Copyright © 1990 Apple Computer, Inc. All rights reserved.
- *
- ************************************************************************/
- #define LSBPATH 0x00000012L /* location of the lsb path table */
- #define MSBPATH 0x00000013L /* location of the msb path table */
-
- #define DIRECTORY 0x00000014L /* location of directory table */
- #define PATHTBLSIZE 0x0000000AL /* size of each of the path tables */
-
- #define DATASTART 0x00000015L /* where the first data file starts */
-
- /* round up to the next CDBLKSIZE boundary */
- #define ROUND_UP(x) ((x) + CDBLKSIZE -1) & ~(CDBLKSIZE-1)
-
-